home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / PC_JOVE.ZIP / FUNCS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-26  |  768 b   |  29 lines

  1. /* funcs.h */
  2. #ifdef FUNCS
  3.  
  4. int OKXonXoff,
  5.     VisBell;
  6.  
  7. int phystab = 4;
  8. int RMargin = RMARGIN;
  9. int    MakeAll = 0;        /* Not make -k */
  10. int    ScrollStep = 0;        /* Full scrolling */
  11. int WtOnMk = 1;        /* Write the modified files when we make */
  12. int    UseBuffers = 0;        /* Don't create buffers by default. It may
  13.                    be useful sometimes to making listings */
  14. int EndWNewline = 1;    /* End files with a blank line */
  15. int    stackp = 0;
  16.  
  17.  
  18. struct function    functions[NFUNCS],    /* Wired functions */
  19.         macros[NMACROS],    /* Macros */
  20.         variables[NVARS];    /* Variables */
  21.  
  22. FMACRO *macstack[NMACROS];
  23. FMACRO KeyMacro;    /* Macro used for defining */
  24.  
  25.  
  26. #endif
  27.  
  28. /* end */
  29.